home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / libgraphviz4.postinst < prev    next >
Text File  |  2009-09-16  |  508b  |  23 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. # Update the configuration file (/usr/lib/graphviz/config3)
  6. # Needed for the plugins too
  7. if [ -x /usr/sbin/libgraphviz4-config-update ]; then
  8.     /usr/sbin/libgraphviz4-config-update -c
  9. fi
  10.  
  11. # Remove the old configuration file if present, see README.Debian-packaging
  12. # Needed only in libgraphivzN
  13. if [ -f /usr/lib/graphviz/config ]; then
  14.     rm -f /usr/lib/graphviz/config
  15. fi
  16.  
  17. # Automatically added by dh_makeshlibs
  18. if [ "$1" = "configure" ]; then
  19.     ldconfig
  20. fi
  21. # End automatically added section
  22.  
  23.